home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbdatabs / dtypes.h < prev    next >
C/C++ Source or Header  |  1999-03-14  |  5KB  |  110 lines

  1. // ------------------------------- //
  2. // -------- Start of File -------- //
  3. // ------------------------------- //
  4. // ----------------------------------------------------------- //
  5. // C++ Header File Name: dtypes.h 
  6. // Compiler Used: MSVC40, DJGPP 2.7.2.1, GCC 2.7.2.1, HP CPP 10.24
  7. // Produced By: Doug Gaer   
  8. // File Creation Date: 09/05/1997  
  9. // Date Last Modified: 03/15/1999
  10. // Copyright (c) 1997 Douglas M. Gaer
  11. // ----------------------------------------------------------- // 
  12. // ---------- Include File Description and Details  ---------- // 
  13. // ----------------------------------------------------------- // 
  14. /*
  15. The VBD C++ classes are copyright (c) 1997, by Douglas M. Gaer.
  16. All those who put this code or its derivatives in a commercial
  17. product MUST mention this copyright in their documentation for
  18. users of the products in which this code or its derivative
  19. classes are used. Otherwise, you have the freedom to redistribute
  20. verbatim copies of this source code, adapt it to your specific
  21. needs, or improve the code and release your improvements to the
  22. public provided that the modified files carry prominent notices
  23. stating that you changed the files and the date of any change.
  24.  
  25. THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.
  26. THE ENTIRE RISK OF THE QUALITY AND PERFORMANCE OF THIS SOFTWARE
  27. IS WITH YOU. SHOULD ANY ELEMENT OF THIS SOFTWARE PROVE DEFECTIVE,
  28. YOU WILL ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR
  29. CORRECTION.
  30.  
  31. This file contains typedefs and constants used to maintain
  32. compatiblity between the built-in data type sizes on various
  33. compilers.
  34.  
  35. Changes: 
  36. ================================================================
  37. 12/16/1997 - Added leading and trailing double underscores to
  38. type names to avoid any name conflicts with other libraries.
  39. Changed by: Doug Gaer
  40.  
  41. 12/16/1997 - Added __USE_OLD_TYPE_NAMES__ macro to conditionally
  42. compile with old type names.
  43. Changed by: Doug Gaer
  44.  
  45. 05/28/1998 - Added __USE_DTYPES_CONSTANTS__ macro to enable or
  46. disable the positive and negitive limits constants defined in
  47. this file.
  48. Changed by: Doug Gaer
  49. ================================================================
  50. */
  51. // ----------------------------------------------------------- //   
  52. #ifndef __DTYPES_HPP__
  53. #define __DTYPES_HPP__
  54.  
  55. // NOTE: These typedefs were renamed to avoid name conficts 
  56. typedef char __SBYTE__;            // 8-bit signed value
  57. typedef unsigned char __UBYTE__;   // 8-bit unsigned value
  58. typedef int __WORD__;              // (W)ord size (4 bytes) 
  59. typedef unsigned __UWORD__;        // (U)nsigned (W)ord size (4 bytes)
  60. typedef long __LWORD__;            // (L)ong (W)ord size (4 bytes)
  61. typedef unsigned long __ULWORD__;  // (U)nsigned (L)ong (W)ord size (4 Bytes)
  62. typedef short __SWORD__;           // (S)hort (W)ord size (2 bytes)
  63. typedef unsigned short __USWORD__; // (U)nsigned (S)hort (W)ord size (2 bytes) 
  64. typedef double __DPFLOAT__; // (D)ouble (P)recision (F)loating point (8 bytes)
  65.  
  66. // Define this macro to compile with these previous type names.
  67. // #ifndef __USE_OLD_TYPE_NAMES__
  68. // #define __USE_OLD_TYPE_NAMES__
  69. // #endif
  70.  
  71. // These typedefs provide compatibility with the previous releases.
  72. #ifdef __USE_OLD_TYPE_NAMES__
  73. typedef char SBYTE;            // 8-bit signed value
  74. typedef unsigned char UBYTE;   // 8-bit unsigned value
  75. typedef int WORD;              // (W)ord size (4 bytes) 
  76. typedef unsigned UWORD;        // (U)nsigned (W)ord size (4 bytes)
  77. typedef long LWORD;            // (L)ong (W)ord size (4 bytes)
  78. typedef unsigned long ULWORD;  // (U)nsigned (L)ong (W)ord size (4 Bytes)
  79. typedef short SWORD;           // (S)hort (W)ord size (2 bytes)
  80. typedef unsigned short USWORD; // (U)nsigned (S)hort (W)ord size (2 bytes) 
  81. typedef double DPFLOAT; // (D)ouble (P)recision (F)loating point (8 bytes)
  82. #endif
  83.  
  84. // Define this macro to use the positive and negitive limits
  85. // constants defined in this file.
  86. // #ifndef __USE_DTYPES_CONSTANTS__
  87. // #define __USE_DTYPES_CONSTANTS__
  88. // #endif
  89.  
  90. #ifdef __USE_DTYPES_CONSTANTS__
  91. // Positive and Negitive limits Constants 
  92. const __LWORD__   LWORDPositiveLimit = 2147483647;
  93. const __LWORD__   LWORDNegitiveLimit = 2147483648;
  94. const __ULWORD__  ULWORDLimit        = 4294967295;
  95. const __WORD__    WORDPositiveLimit  = 2147483647;
  96. const __WORD__    WORDNegitiveLimit  = 2147483648;
  97. const __UWORD__   UWORDLimit         = 4294967295;
  98. const __SWORD__   SWORDPositiveLimit = 32767;
  99. const __SWORD__   SWORDNegitiveLimit = 32768;
  100. const __USWORD__  USWORDLimit        = 65535;
  101. const __DPFLOAT__ DPFLOATPositiveLimit = 1.7E+308; // (15 digit precision)
  102. const __DPFLOAT__ DPFLOATNegitiveLimit = 1.7E-308; // (15 digit precision)
  103. #endif // __USE_DTYPES_CONSTANTS__
  104.  
  105. #endif // __DTYPES_HPP__
  106. // ----------------------------------------------------------- // 
  107. // ------------------------------- //
  108. // --------- End of File --------- //
  109. // ------------------------------- //
  110.